Micron Document
Fox's Git Mirrors


Displaying Raw • Download

examples/pageserver/vendor/github.com/creack/goselect/select_unsupported.go 9eb1d8a4a2c2fa7c16a4586f6227eaf9f617c5cc (9eb1d8a4) Text, 294 B

// +build plan9 solaris

package goselect

import (
"fmt"
"runtime"
"syscall"
)

// ErrUnsupported .
var ErrUnsupported = fmt.Errorf("Platofrm %s/%s unsupported", runtime.GOOS, runtime.GOARCH)

func sysSelect(n int, r, w, e *FDSet, timeout *syscall.Timeval) error {
return ErrUnsupported
}

Served by rngit 1.5.2 - Generated in 0.03s